home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / Book Chapters / 03 - Advanced Graphics / Example 5 / update.h < prev   
Text File  |  1995-02-27  |  435b  |  29 lines

  1. //
  2. //    File: update.h
  3. //
  4. //    This file is the header for update.c.
  5. //
  6. //    2/18/95 -- Created by Mick
  7. //
  8.  
  9. // shield
  10. #ifndef _update_h_
  11. #define _update_h_
  12.  
  13. // include files
  14.  
  15. // global defines
  16.  
  17. // global typedefs
  18.  
  19. // extern functions
  20.  
  21. extern void clearUpdate( void );
  22. extern void addRectToUpdate( Rect *inUpdateRect );
  23. extern unsigned char getUpdateRect( Rect *outUpdateRect );
  24.  
  25. // extern data
  26.  
  27. // end of shield
  28. #endif // #ifndef _update_h_
  29.